home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MISC / SENDMAIL.ARC / c / putmail next >
Text File  |  1993-10-04  |  887b  |  48 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. #define BUFFLEN 1024
  6.  
  7. char buffer[BUFFLEN];
  8.  
  9. void usage()
  10. {
  11.   fprintf( stderr, "Usage: putmail user\n" );
  12.   exit( 1 );
  13. }
  14.  
  15.  
  16. FILE *infile;
  17. FILE *outfile;
  18.  
  19. int main( int argc, char **argv )
  20. {
  21.   char *buff;
  22.   
  23.   if( argc!=2 ) usage();
  24.   infile = stdin;
  25.   sprintf( buffer, "<Mail$dir>.spool.mail.text.%s", argv[1] );
  26.   if( ! (outfile=fopen(buffer,"a")) ) {
  27.     fprintf( stderr, "unable to open mail box\n" );
  28.     exit( 1 );
  29.     }
  30. /* we do no file locking ! */
  31.   buff = fgets( buffer, BUFFLEN-1, infile );
  32.   if( memcmp( buffer, "From ", 5 ) ) {
  33.     time_t atim;
  34.  
  35.     time( &atim );
  36.     fprintf( outfile, "From %s", ctime( &atim ));
  37.     }
  38.     
  39.   while( buff==buffer ) {
  40.     fputs( buffer, outfile );
  41.     buff = fgets( buffer, BUFFLEN-1, infile );
  42.     }
  43.   fprintf( outfile, "\n" );
  44.   fclose( infile );
  45.   fclose( outfile );
  46.   return 0;
  47. }
  48.